git config --global 127.0.0.1:7897
git config --global --unset http.proxy
git config --global --unset https.proxy


git config --global https.proxy https://127.0.0.1:7897
git config --global http.proxy http://127.0.0.1:7897



git config --global 192.168.1.75:7897
git config --global --unset http.proxy
git config --global --unset https.proxy


git config --global https.proxy https://192.168.1.75:7897
git config --global http.proxy http://192.168.1.75:7897



git config --global --get http.proxy
git config --global --get https.proxy



